e3651aeda418d779bd0529d8485eb477677f6b6a,zul2jsp/src/org/zkoss/zul/jsp/impl/Utils.java,Utils,adjustChildren,#Page#Component#Collection#String#,48
Before Change
final Inline inl = new Inline(s);
if (it.hasNext()) {
Component child = (Component)it.next();
parent.insertBefore(inl, child);
} else {
parent.appendChild(inl);
}
After Change
final Inline inl = new Inline(txt);
final Component child = matchNext(it, uuid);
if (child != null) {
if (parent != null)
parent.insertBefore(inl, child);
else
inl.setPageBefore(page, child);
} else {